home *** CD-ROM | disk | FTP | other *** search
/ Digitální fotografie a video / Digitalni-fotografie-a-video-covermount.bin / Aplikace / An / Kap_2 / An_2_5.dxr / 00008_Video 1.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  913 b   |  45 lines

  1. property Znacka
  2.  
  3. on getPropertyDescriptionList
  4.   set description to [:]
  5.   addProp(description, #Znacka, [#comment: "Znacka:", #format: #integer, #default: 1])
  6.   return description
  7. end
  8.  
  9. on getBehaviorDescription
  10.   return "N├íjezd a klik"
  11. end
  12.  
  13. on beginSprite me
  14.   set the visible of sprite the spriteNum of me to 1
  15.   set the movieTime of sprite 2 to 0
  16.   set the movieRate of sprite 2 to 1
  17. end
  18.  
  19. on endSprite me
  20.   set the visible of sprite the spriteNum of me to 0
  21. end
  22.  
  23. on mouseEnter me
  24.   set the cursor of sprite the spriteNum of me to [member "ruka_1", member "ruka_2"]
  25. end
  26.  
  27. on mouseLeave me
  28.   set the cursor of sprite the spriteNum of me to -1
  29. end
  30.  
  31. on mouseDown me
  32.   puppetSound(1, "Klik")
  33. end
  34.  
  35. on mouseUp me
  36.   global Zapnuty_zvuk
  37.   set the movieRate of sprite 2 to 0
  38.   set the visible of sprite the spriteNum of me to 0
  39.   if Zapnuty_zvuk then
  40.     puppetSound(3, "Hudba")
  41.   end if
  42.   updateStage()
  43.   go(Znacka)
  44. end
  45.